home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / internet / extens / tcopy / Copy Plain Text.xpi / chrome / copyplaintext.jar / content / options.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-09-09  |  810 b   |  21 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  3.  
  4. <dialog id="CopyPlainTextOptions"
  5.         buttons="accept,cancel"
  6.         title="Copy Plain Text Options"
  7.         ondialogaccept="return copyplaintext_options_save();"
  8.         ondialogcancel="return true;"
  9.         onload="copyplaintext_options_init();"
  10.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  11.     
  12.     <script type="application/x-javascript" src="chrome://copyplaintext/content/options.js"></script>
  13.     <groupbox>
  14.         <caption label="Formatting" />
  15.         
  16.         <checkbox id="trim" label="Trim space around text" />
  17.         <checkbox id="extra-space" label="Replace double spaces with single space" />
  18.         <checkbox id="extra-newline" label="Replace double newlines with sinle newline" checked="true" />
  19.     </groupbox>
  20.     
  21. </dialog>